From: Keir Fraser Date: Thu, 9 Jul 2009 15:06:52 +0000 (+0100) Subject: tools: python -> $(PYTHON) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13623 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=75577f42e0d4fafa3851880aaecf902df486d971;p=xen.git tools: python -> $(PYTHON) Signed-off-by: Christoph Egger --- diff --git a/tools/include/xen-foreign/Makefile b/tools/include/xen-foreign/Makefile index f770cf4de5..77a535f4d0 100644 --- a/tools/include/xen-foreign/Makefile +++ b/tools/include/xen-foreign/Makefile @@ -23,13 +23,13 @@ check-headers: checker rm tmp.size x86_32.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_32.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h - python $< $* $@ $(filter %.h,$^) + $(PYTHON) $< $* $@ $(filter %.h,$^) x86_64.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_64.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h - python $< $* $@ $(filter %.h,$^) + $(PYTHON) $< $* $@ $(filter %.h,$^) ia64.h: mkheader.py structs.py $(ROOT)/arch-ia64.h $(ROOT)/xen.h - python $< $* $@ $(filter %.h,$^) + $(PYTHON) $< $* $@ $(filter %.h,$^) checker.c: mkchecker.py structs.py - python $< $@ $(architectures) + $(PYTHON) $< $@ $(architectures)